home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Sound / PlayGUI / Install < prev    next >
Text File  |  2000-04-27  |  882b  |  43 lines

  1.  
  2.  
  3. (complete 0)
  4.  
  5. (set prg-version "2.8")
  6.  
  7. (set destfonts                          "fonts:")
  8.  
  9. (set #intro
  10. (cat " Welcome to the installation of PlayGUI "prg-version". This script will copy all necessary files of the PlayGUI archive to your HD."))
  11.  
  12. (set #extro
  13. (cat "The installation of PlayGUI "prg-Version" is finished!  Please read the GUIDE !!! "))
  14.  
  15. (set #select_Hadir_help
  16. (cat "Choose the dir for PlayGUI here or make a directory first."
  17. ))
  18.  
  19. (message #intro)
  20.  
  21. (complete 10)
  22.  
  23. (set destdir
  24.         (askdir
  25.                 (prompt "Where do you want to install PlayGUI?\nNo directory will be created!")
  26.                 (help #select_hadir_help)
  27.                 (default "PlayGUI:")))
  28.  
  29. (complete 20)
  30.  
  31. (copyfiles
  32.           (source "")
  33.           (dest destdir)
  34.           (all))
  35.  
  36. (copyfiles
  37.           (source "fonts")
  38.           (dest destfonts)
  39.  (all))
  40.  
  41. (complete 100)
  42. (message #extro)
  43.